Returns a list of values for the given time range.

Namespace:  Equis.JanusToolkit
Assembly:  Janus (in Janus.dll)

Syntax

C#
public List<ValueType> GetRange(
	int tStart,
	int tEnd
)

Parameters

tStart
Type: System..::..Int32
start time
tEnd
Type: System..::..Int32
end time

Return Value

A list of time line values

Examples

 Copy imageCopy Code
            List<XYStatus> positionList = pointerPosition.GetRange(-200, 0);
            

See Also